home *** CD-ROM | disk | FTP | other *** search
/ Shareware Grab Bag / Shareware Grab Bag.iso / 090 / pctj0287.arc / SOUND.H < prev    next >
Text File  |  1986-12-15  |  192b  |  8 lines

  1. /* 
  2.  *    sound.h -- header for sound routines 
  3.  */ 
  4. #define PPI      0x61 
  5. #define SPKR      0x03 
  6. #define SPKR_ON      outp(PPI, inp(PPI) | SPKR) 
  7. #define SPKR_OFF  outp(PPI, inp(PPI) & ~SPKR) 
  8.